home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / CBGRX103.ZIP / contrib / libgrx / test / make.bat < prev    next >
DOS Batch File  |  1993-12-06  |  383b  |  30 lines

  1. @echo off
  2. if _%1==_ goto default
  3. :again
  4. goto %1
  5. goto exit
  6.  
  7. :default
  8.     make.exe -fmakefile.gcc
  9.     if errorlevel 1 goto exit
  10.     goto end
  11.  
  12. :turboc
  13.     make.exe -fmakefile.tcc
  14.     if errorlevel 1 goto exit
  15.     goto end
  16.  
  17. :all
  18.     call make default
  19.     if errorlevel 1 goto exit
  20.     call make turboc
  21.     if errorlevel 1 goto exit
  22.     goto end
  23.  
  24.  
  25. :end
  26. shift
  27. if not _%1==_ goto again
  28. :exit
  29.  
  30.